3
How do I change the control's font

/*
	Copy and paste the following directives to your header file as
	it defines the namespace 'EXSLIDERLib' for the library: 'ExSlider 1.0 Control Library'

	#import <ExSlider.dll>
	using namespace EXSLIDERLib;
*/
EXSLIDERLib::ISliderPtr spSlider1 = GetDlgItem(IDC_SLIDER1)->GetControlUnknown();
spSlider1->PutThumbSize(32);
spSlider1->GetFont()->PutName(L"Tahoma");
spSlider1->PutForeColor(RGB(255,0,0));
spSlider1->PutCaption(EXSLIDERLib::exThumbPart,L"thumb");

2
How can I change the control's foreground color

/*
	Copy and paste the following directives to your header file as
	it defines the namespace 'EXSLIDERLib' for the library: 'ExSlider 1.0 Control Library'

	#import <ExSlider.dll>
	using namespace EXSLIDERLib;
*/
EXSLIDERLib::ISliderPtr spSlider1 = GetDlgItem(IDC_SLIDER1)->GetControlUnknown();
spSlider1->PutForeColor(RGB(255,0,0));
spSlider1->PutThumbSize(32);
spSlider1->PutCaption(EXSLIDERLib::exThumbPart,L"thumb");

1
How can I change the control's background color

/*
	Copy and paste the following directives to your header file as
	it defines the namespace 'EXSLIDERLib' for the library: 'ExSlider 1.0 Control Library'

	#import <ExSlider.dll>
	using namespace EXSLIDERLib;
*/
EXSLIDERLib::ISliderPtr spSlider1 = GetDlgItem(IDC_SLIDER1)->GetControlUnknown();
spSlider1->PutBackColor(RGB(0,255,0));